github.com/jackc/pgx/v5/pgxpool.Tx.t (field)
13 uses
github.com/jackc/pgx/v5/pgxpool (current package)
pool.go#L810: return &Tx{t: t, c: c}, nil
tx.go#L12: t pgx.Tx
tx.go#L18: return tx.t.Begin(ctx)
tx.go#L26: err := tx.t.Commit(ctx)
tx.go#L38: err := tx.t.Rollback(ctx)
tx.go#L47: return tx.t.CopyFrom(ctx, tableName, columnNames, rowSrc)
tx.go#L51: return tx.t.SendBatch(ctx, b)
tx.go#L55: return tx.t.LargeObjects()
tx.go#L66: return tx.t.Prepare(ctx, name, sql)
tx.go#L70: return tx.t.Exec(ctx, sql, arguments...)
tx.go#L74: return tx.t.Query(ctx, sql, args...)
tx.go#L78: return tx.t.QueryRow(ctx, sql, args...)
tx.go#L82: return tx.t.Conn()